home *** CD-ROM | disk | FTP | other *** search
/ Sky at Night 2007 June / SAN CD 6-2007 CD-ROM 25.iso / pc / Software / AstroGrav_Win / Java / jre1.6.0 / lib / rt.jar / sun / management / HotspotCompilationMBean.class (.txt) < prev    next >
Encoding:
Java Class File  |  2006-11-29  |  653 b   |  29 lines

  1. package sun.management;
  2.  
  3. import java.util.List;
  4. import sun.management.counter.Counter;
  5.  
  6. public interface HotspotCompilationMBean {
  7.    int getCompilerThreadCount();
  8.  
  9.    List<CompilerThreadStat> getCompilerThreadStats();
  10.  
  11.    long getTotalCompileCount();
  12.  
  13.    long getBailoutCompileCount();
  14.  
  15.    long getInvalidatedCompileCount();
  16.  
  17.    MethodInfo getLastCompile();
  18.  
  19.    MethodInfo getFailedCompile();
  20.  
  21.    MethodInfo getInvalidatedCompile();
  22.  
  23.    long getCompiledMethodCodeSize();
  24.  
  25.    long getCompiledMethodSize();
  26.  
  27.    List<Counter> getInternalCompilerCounters();
  28. }
  29.